radiobutton: don't use focus-line-width
authorCosimo Cecchi <cosimoc@gnome.org>
Sun, 4 May 2014 18:12:37 +0000 (20:12 +0200)
committerCosimo Cecchi <cosimoc@gnome.org>
Fri, 9 May 2014 18:02:45 +0000 (11:02 -0700)
gtk/gtkradiobutton.c

index be52b50bdab213f46934139348035a4e0481d556..e1bd0d52caec5b22f5e427df5a907217bd2328b4 100644 (file)
@@ -867,14 +867,12 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
 {
   GtkAllocation allocation;
   GtkWidget *widget;
-  GtkWidget *child;
   GtkButton *button;
   GtkToggleButton *toggle_button;
   GtkStyleContext *context;
   GtkStateFlags state = 0;
   gint x, y;
   gint indicator_size, indicator_spacing;
-  gint focus_width;
   gint baseline;
   guint border_width;
 
@@ -885,11 +883,6 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
   state = gtk_widget_get_state_flags (widget);
 
   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
-
-  gtk_widget_style_get (widget,
-                        "focus-line-width", &focus_width,
-                        NULL);
-
   _gtk_check_button_get_props (check_button, &indicator_size, &indicator_spacing);
 
   gtk_widget_get_allocation (widget, &allocation);
@@ -902,10 +895,6 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
     y = CLAMP (baseline - indicator_size * button->priv->baseline_align,
               0, allocation.height - indicator_size);
 
-  child = gtk_bin_get_child (GTK_BIN (check_button));
-  if (!(child && gtk_widget_get_visible (child)))
-    x += focus_width;
-
   state &= ~(GTK_STATE_FLAG_INCONSISTENT |
              GTK_STATE_FLAG_ACTIVE |
              GTK_STATE_FLAG_SELECTED |